home *** CD-ROM | disk | FTP | other *** search
/ Network Supervisor's Toolkit / Network Supervisor's Toolkit.iso / patches / _21xptch / rpl / rplvap.doc < prev    next >
Text File  |  1996-07-10  |  3KB  |  47 lines

  1.                                NOVELL RPL VAP
  2.  
  3. Unlike NOVELL Boot ROMs, the IBM Token Ring RPL ROM is not NetWare specific.
  4. In order to be able to boot from various systems, it uses a "Staged Boot"
  5. idea.  That means it sends out a generic "Find Frame" packet, and expects
  6. whichever kind of system it is on to be able to interpret and respond.  Then
  7. it asks for a file to be downloaded.  This file (typically called TOKEN.RPL,
  8. or PCN2.RPL, or ETHER.RPL, etc.) will be the NetWare specific file that
  9. contains code to boot from a NOVELL network.
  10.  
  11. In the past, the only way to get NetWare to respond to the RPL packets was
  12. to make the driver capable of recognizing those packets, and responding
  13. accordingly.  This was mostly because the Find Frame is sent to a multicast
  14. address, and NetWare 286 didn't support multicast addressing.  With the
  15. advent of AppleTalk Phase II drivers, a VAP can receive and respond to
  16. multicast addresses, making this the preferred way of doing things.
  17.  
  18. The RPL VAP must be loaded after the ROUTE VAP, if source routing is to be
  19. supported.  That is why we have ROUTE.VP0 and RPL.VP1.
  20.  
  21. In order to work with multiple LAN drivers, or multiple .RPL files, the RPL
  22. VAP must be configured.  This is done by running RPCONFIG.  RPCONFIG prints
  23. out a help screen and prompts for inputs.
  24.  
  25. When the RPL VAP comes up, it will load specified .RPL files, and connect
  26. them with specified LAN drivers.  Then, when the VAP receives a Find Frame,
  27. and subsequent Send File requests from a given LAN driver, it will respond
  28. with the proper .RPL file. 
  29.  
  30. Since the VAP attaches without logging in, it only has read rights in the
  31. SYS:LOGIN subdirectory.  Therefore, THE .RPL FILES ARE EXPECTED TO BE LOCATED
  32. IN SYS:LOGIN.  This is not the same as in the previous system, where they
  33. were expected to be in SYS:SYSTEM.
  34.  
  35. If the RPL VAP hasn't been configured by RPCONFIG, it will default when it
  36. comes up.  It will go out to SYS:LOGIN, find the first .RPL file it can, and
  37. connect it with the first LAN driver available.  This is generally not
  38. reliable for more than one .RPL file, or more than one LAN driver.  If in
  39. doubt, run RPCONFIG.
  40.  
  41. The server that responds to the Find Frame, and downloads the .RPL file, is
  42. not guaranteed to be the server that the workstation will attach to during
  43. the RPL sequence.  This means that the BOOTCONF.SYS files, and DOS Boot Disk
  44. Image Files (NET$DOS.SYS, etc.) will still need to be in SYS:LOGIN of every
  45. server that could respond to the Get Nearest Server request.  Not just the
  46. server with the RPL VAP loaded.
  47.